WordPress

推荐列表 站点导航

当前位置:首页 > 建站教程 > WordPress >

WordPress显示某篇文章中所有评论者名称教程

来源:网络整理  作者:  发布时间:2020-12-15 02:14
如果想显示某篇文章或当前文章所有评论者名称列表,今天看看WordPress显示某篇文章中所有评论者名称教程。将代码...

'post_id' => $post_id,

$names = array();

return implode( $sep, $names );

}

一、调用ID为:123文章的所有评论者名称

$arr = explode( ' ', trim( $name ) );

在模板中使用

<?php echo get_comment_authors_list('');?>

在文章中添加短代码:

}

$names[] = $arr[0];

如果想显示某篇文章或当前文章所有评论者名称列表,今天看看WordPress显示某篇文章中所有评论者名称教程。

}

将代码添加到当前主题函数模板functions.php中:

$name = $user ? $user->display_name : $name;

$post_id = $id ? $id : get_the_ID();

$atts = shortcode_atts( array(

使用方法:

) );

function comment_authors_list_shortcode( $atts = array() ) {

在模板中使用:

}

if ( ! empty( $arr[0] ) && ! in_array( $arr[0], $names ) ) {

'post_id' => 0,

if ( $post_id ) {

if ( $comment->user_id ) {

), $atts );

WordPress显示某篇文章中所有评论者名称教程 (https://www.wpmee.com/) WordPress开发教程 第1张

function get_comment_authors_list( $id = 0, $sep = ', ' ) {

在文章添加短代码:

'type' => 'comment',

二、调用当前文章所有评论者名称,与上面类似只是去掉其中的文章ID,适合放在文章正文模板中。

foreach ( $comments as $comment ) {

$name = $comment->comment_author;

'status' => 'approve',

add_shortcode( 'comment_authors_list', 'comment_authors_list_shortcode' );

[comment_authors_list post_id="123" /]

$comments = get_comments( array(

'list_sep' => '',

return get_comment_authors_list( $atts['post_id'], $atts['list_sep'] );

}

<?php echo get_comment_authors_list('123');?>

[comment_authors_list /]

unset( $comments );

}

$user = get_userdata( $comment->user_id );

$sep = $sep ? $sep : ', ';

相关热词: 教程

本站内容来源于网络,如有侵权请与我们联系,我们会及时删除,我们深感抱歉!
注:本站所有信息仅供用于网络技术学习参考,学习中请遵循相关法律法规!

本文地址: https://v30.fanwenzhu.com/jz/wp/3974.shtml

Copyright © www.juheyunku.com      关于 | 合作 | 声明 | 联系 | 更新 | 地图 | Tags

WordPress显示某篇文章中所有评论者名称教程

2020-12-15 编辑:

'post_id' => $post_id,

$names = array();

return implode( $sep, $names );

}

一、调用ID为:123文章的所有评论者名称

$arr = explode( ' ', trim( $name ) );

在模板中使用

<?php echo get_comment_authors_list('');?>

在文章中添加短代码:

}

$names[] = $arr[0];

如果想显示某篇文章或当前文章所有评论者名称列表,今天看看WordPress显示某篇文章中所有评论者名称教程。

}

将代码添加到当前主题函数模板functions.php中:

$name = $user ? $user->display_name : $name;

$post_id = $id ? $id : get_the_ID();

$atts = shortcode_atts( array(

使用方法:

) );

function comment_authors_list_shortcode( $atts = array() ) {

在模板中使用:

}

if ( ! empty( $arr[0] ) && ! in_array( $arr[0], $names ) ) {

'post_id' => 0,

if ( $post_id ) {

if ( $comment->user_id ) {

), $atts );

WordPress显示某篇文章中所有评论者名称教程 (https://www.wpmee.com/) WordPress开发教程 第1张

function get_comment_authors_list( $id = 0, $sep = ', ' ) {

在文章添加短代码:

'type' => 'comment',

二、调用当前文章所有评论者名称,与上面类似只是去掉其中的文章ID,适合放在文章正文模板中。

foreach ( $comments as $comment ) {

$name = $comment->comment_author;

'status' => 'approve',

add_shortcode( 'comment_authors_list', 'comment_authors_list_shortcode' );

[comment_authors_list post_id="123" /]

$comments = get_comments( array(

'list_sep' => '',

return get_comment_authors_list( $atts['post_id'], $atts['list_sep'] );

}

<?php echo get_comment_authors_list('123');?>

[comment_authors_list /]

unset( $comments );

}

$user = get_userdata( $comment->user_id );

$sep = $sep ? $sep : ', ';

本站内容来源于网络,如有侵权请与我们联系,我们会及时删除,我们深感抱歉!
注:本站所有信息仅供学习参考!
本文地址为 https://v30.fanwenzhu.com/jz/wp/3974.shtml

相关文章

风云图片

推荐阅读

返回WordPress频道首页